home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / lang / PPCsmalltalk.lha / PPCSmallTalk / prelude / bytearray.st < prev    next >
Text File  |  1986-10-19  |  344b  |  22 lines

  1. Class ByteArray :ArrayedCollection
  2. [
  3.     new: size
  4.         ^ <primitive 116 size>
  5. |
  6.     at: index
  7.         ^ <primitive 118 self index>
  8. |
  9.     at: index put: value
  10.         <primitive 119 self index value>
  11. |
  12.     printString    | str |
  13.         str <- '#[ '.
  14.         (1 to: self size)
  15.             do: [:i | str <- str , (self at: i) printString , ' '].
  16.         ^ str , ']'
  17. |
  18.     size
  19.         ^ <primitive 117 self>
  20. ]
  21.  
  22.